Adding Comments to Scripts

 

You can add comments to your scripts but they have to be in a separate line:

correct:      Press <Alt - R>
                  KEY: %R

incorrect:    KEY: %R   'Press <Alt - R>

 

To temporary disable a keyword use any letter in front of it. A semicolon (;) is preferred:

KEY: A
KEY: B
;KEY: C
KEY: D

In this example only the keys 'A, B and D' are pressed.